home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Special Tips & Tricks for Windows 95
/
Chip Wintips.iso
/
sterown
/
inne
/
hp_cd_wr
/
cfgisa.bat
< prev
next >
Wrap
DOS Batch File
|
1996-03-15
|
757b
|
26 lines
echo off
echo ***********************************************************************
echo * This batch file supports both the ABP510 and ABP5140 host adapters. *
echo * It must run from DOS, not a DOS box under Windows. *
echo * *
echo * It first tries the ABP510 card, if you have the other card *
echo * installed, it will then go to the ABP5140 card. *
echo ***********************************************************************
pause
cfg510
if ERRORLEVEL GT 0 goto card
if ERRORLEVEL EQ 0 goto esckey
if ERRORLEVEL LT 0 goto minus
:card
cfg5140
goto out
:esckey
goto out
:minus
rem Negative error code.
:out